home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000246_fdc@columbia.edu_Mon Jul 29 11:43:45 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  67 lines

  1. Article: 13560 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Help needed in setup of Host - dialin client
  6. Date: 29 Jul 2002 11:43:38 -0400
  7. Organization: Columbia University
  8. Lines: 50
  9. Message-ID: <ai3nra$gg0$1@watsol.cc.columbia.edu>
  10. References: <71dc564d.0207261309.7bfa937a@posting.google.com> <ahse5j$6uc$1@watsol.cc.columbia.edu> <71dc564d.0207290729.32a9d6cb@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1027957420 28835 128.59.39.139 (29 Jul 2002 15:43:40 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 29 Jul 2002 15:43:40 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13560
  16.  
  17. In article <71dc564d.0207290729.32a9d6cb@posting.google.com>,
  18. chuck <greg180@aol.com> wrote:
  19. : ...
  20. : Thanks for simplifing my problem, less IS indeed more.
  21. : Further, Chapter 11 is my new best friend. I had
  22. : not Read The Fine Manual to that point.
  23. : It seems my problem is on the client side now.
  24. : Some subtle point or set command I am missing?
  25. : Further elaboration seems to be needed...
  26. : On the host side call, is answered, the server reports itself
  27. : present and displays the messages below (I set server display off)
  28. :  Speed changed to 26400
  29. :  Call complete: "CONNECT 26400".
  30. : Entering server mode on Boca V90 Tidalwave External FD
  31. : Type Ctrl-C to quit.
  32. : --------------
  33. : Client seems unable to talk to the server however
  34. : After I dial it connects, and I Alt-X to command screen.
  35. : I issue an RDIR (to test the connection) and I receive the message
  36. :   Press X or E key to cancel.
  37. : E of course cancels, X errors out after 60+ seconds.
  38. : When I quit the client session, host sees it as well
  39. : and sets up for next call as hoped.
  40. :
  41. The call is answered, the connection is made, but no useful communication 
  42. is happening.  Usually this is explained by one of the basic serial
  43. communication parameters discussed in Chapter 3:
  44.  
  45.  . Interface speed
  46.  . Flow control
  47.  . Parity
  48.  
  49. It's almost certainly not parity.  My guess is interface speed:
  50.  
  51. :  Speed changed to 26400
  52. :  Call complete: "CONNECT 26400".
  53.  
  54. Try adding "set modem speed-matching off" to your script.
  55. Also make sure both sends have RTS/CTS flow control.
  56.  
  57. - Frank
  58.